#taskbar {
    --taskbar-height: 40px;
    position: fixed;
    display: flex;
    gap: 10px;
    flex-direction: row;
    z-index: 1000;
    width: 100vw;
    height: var(--taskbar-height);
    bottom: 0;
    backdrop-filter: blur(20px);    
    background-color: var(--theme-transparent);
}

#taskbar>* {
    display: flex;
    vertical-align: middle;
    user-select: none;
}

#taskbar>#start-btn>svg {
    transform: scale(0.4);
    margin-inline: 4px;
}

#clock {
    text-align: center;
    position: absolute;
    right: 60px;
    font-size: 12px;
    line-height: calc(var(--taskbar-height) / 2);
}